* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, "PingFang SC", "Micrsoft Yahei", sans-serif;
  font-size: 14px;
}

img {
  width: 100%;
}

.glide__arrow {
  border-radius: 50%;
  opacity: 0.4;
}

/* 通用变量 */
:root {
  --light-bg-color: #F1F5FE;
  --text-dark-color: #222222;
  --white-color: #FFFFFF;
  --primary-color: #2575E1;
  --secondary-color: #e3e3e3;
  --text-color-lightest: #e7e9ec;
  --text-color-darker: #2e2e2e;
  --text-color-dark: #494949;
  --text-color-gray: #8b8b8b;
  --text-color-dark-gray: #727272;
  --text-color-light-gray: #c6c6c6;
  --backdrop-color: rgba(42, 42, 42, 0.69);
}

a {
  text-decoration: none;
  cursor: pointer;
}

header {
  width: 100%;
  height: 80px;
  display: grid;
  padding: 0 40px;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 200;
}

.headerBox {
  height: 80px;
}

header .logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark-color);
  margin-left: 30px;
}

header nav {
  justify-self: end;
}

header .nav i {
  color: var(--text-dark-color);
}

header .nav a {
  color: var(--text-dark-color);
  text-decoration: none;
  margin: 0 24px;
  position: relative;
  font-weight: 300;
}

header .nav a.active::after {
  display: block;
  content: "";
  height: 4px;
  background-color: var(--primary-color);
  width: 0%;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  animation: highLine 0.3s linear forwards;
}

@keyframes highLine {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

header .nav a.active,
header .nav a:hover,
header .nav a:active {
  color: var(--primary-color);
}

header .burger {
  display: none;
}

header.sticky {
  position: fixed;
  background-color: white;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  animation: dropDown 0.5s ease-in-out forwards;
  /* 动画执行完后保留在最后一帧 */
}

/* 向下划的效果 */
@keyframes dropDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

header.sticky .logo,
header.sticky nav a,
header.sticky nav i {
  color: var(--text-color-darker);
}

.glide {
  position: relative;
  /* 抵消导航菜单的高度 */
  z-index: 50;
}

.glide__slide img,
.glide__slide video {
  min-width: 100vw;
  min-height: 400px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  z-index: 70;
  color: var(--text-color-lightest) !important;
  text-align: center;
  max-width: 60vw;
  padding-left: 20vw;
}

.slide-caption.left_layout {
  text-align: left;
}

.slide-caption.center_layout {
  padding-left: 0;
}

.glide__slide {
  display: flex;
  align-items: center;
}

.glide__slide.center_layout {
  justify-content: center;
}

.slide-caption h1 {
  font-size: 42px;
  font-weight: 400;
  color: var(--text-color-lightest) !important;
}

.slide-caption h3 {
  font-size: 18px;
  margin: 28px 0;
  max-width: 500px;
  color: var(--text-color-lightest) !important;
}

.slide-caption.left {
  max-width: 80vw;
  text-align: left;
}

.slide-caption>* {
  opacity: 0;
}

.backdrop {
  background: var(--backdrop-color);
  z-index: 60;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.explore-btn {
  padding: 10px 36px;
  border: 0;
  border-radius: 30px;
  color: var(--white-color);
  font-size: 16px;
  cursor: pointer;
  outline: none;
  background: linear-gradient(270deg, #5CF2FF 0%, #3688F5 100%);
}

.explore-btn.btn_no_linear {
  background: #2C6FC2;
}

/* 内容区域 */
/* 通用样式 */

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 每个列水平居中对齐 */
section {
  display: grid;
  justify-items: center;
  padding: 0 80px;
}

.service-box {
  max-width: 1460px;
}

.section-bg {
  position: relative;
}

/* 放在内容的最下方 */
.section-bg::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f9fbfb;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.title1 {
  font-size: 30px;
  font-weight: 300;
  color: var(--text-color-darker);
}


.intro {
  margin: 12px 0 40px;
  font-size: 18px;
  color: #aaa;
  font-weight: 300;
}


/* 关于我们 */
.about-us {
  padding-bottom: 32px;
  padding-top: 64px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 126px 126px;
  column-gap: 5vw;
}

/* 给自定义的行和列名字 */
.feature {
  display: grid;
  grid-template-areas:
    "icon title"
    "icon content";
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr 3fr;
}

.feature i.fas {
  grid-area: icon;
  font-size: 34px;
  color: var(--primary-color);
}

.feature-title {
  grid-area: title;
  font-size: 18px;
  color: var(--text-color-darker);
}

.feature-content {
  grid-area: content;
  color: var(--text-color-gray);
  margin-top: 8px;
}

/* 成功案例 */
.showcases {
  max-width: unset;
  padding: 0;
  padding-top: 72px;
}

.filter-btns {
  margin-top: 54px;
  margin-bottom: 38px;
}

.filter-btn {
  margin: 0 7px;
  background-color: var(--secondary-color);
  border: 0;
  color: var(--text-color-dark-gray);
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s;
}

.filter-btn:focus,
.filter-btn:active {
  outline: none;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.showcases .cases {
  width: 100vw;
}

.showcases .case-item {
  width: 25vw;
  height: 20vw;
  overflow: hidden;
}

.case-item img {
  height: 100%;
  object-fit: cover;
}

/* 客户案例 */
.cases-box {
  position: relative;
  background-color: #fff;
}

.cases-content {
  position: relative;
  z-index: 3;
}

.cases-top-box {
  position: relative;
}

.cases-box-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 520px;
  z-index: 1;
}

.cases-top-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 106px;
}

.cases-title {
  font-size: 60px;
  line-height: 84px;
}

.cases-desc {
  font-size: 20px;
  line-height: 28px;
  max-width: 475px;
  width: 100%;
  margin: 18px 0 38px;
  padding: 0 10px;
  text-align: justify;
}

.cases-logo {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}

.cases-logo-pic {
  width: 65%;
  display: block;
  opacity: 0;
  animation: cases-logo-ani 1s linear 0.5s forwards;
}

@keyframes cases-logo-ani {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.case-list-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cases-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.cases-item {
  flex: 0 0 33.33%;
  width: 33.33%;
  padding: 15px;
}

.cases-item-box {
  background: #FFFFFF;
  box-shadow: 0px 1px 8px 0px #E8E8E8;
  height: 324px;
  overflow: hidden;
}

.cases-item-img {
  width: 380px;
  height: 218px;
}

.cases-item-title {
  font-size: 16px;
  line-height: 27px;
  color: #222;
  margin: 10px 0 6px;
  padding: 0 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cases-item-time {
  color: #999999;
  padding: 0 22px;
  line-height: 22px;
}

.cases-link {
  position: relative;
  margin: 44px 0;
  padding-left: 16px;
  font-size: 28px;
  color: #222;
}

.cases-link:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 24px;
  background-color: #2575E1;
}

/* 服务流程 */
.service {
  padding-top: 131px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--light-bg-color);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  column-gap: 38px;
  row-gap: 34px;
  padding-bottom: 60px;
}

.service-item {
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s linear;
}

.service-item:hover {
  background-color: rgba(175, 201, 230, 0.5);
}

.service-item i.fas {
  grid-area: icon;
  font-size: 42px;
  color: var(--primary-color);
  padding-top: 6px;
}

.service-title {
  text-align: center;
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 14px;
  /* color: var(--text-color-darker); */
  color:#333;
}

.service-content {
  grid-area: content;
  /* color: var(--text-dark-color);
  font-size: 15px;
  line-height: 25px; */
  padding: 0 30px 28px;
  text-align: justify;
  font-weight: 300;
  color: #666;
}

/* 团队介绍 */
.team-intro {
  margin-top: 48px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  margin-top: 86px;
}

.team-member {
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 28px;
  transition: 0.4s;
  display: grid;
  justify-items: center;
}

.profile-image {
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  object-position: top center;
}

.team-member .name {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color-dark);
}

.team-member .position {
  color: var(--text-color-dark-gray);
  margin-top: 12px;
  margin-bottom: 18px;
}

.social-links {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  padding: 0 42px;
}

.social-links li {
  list-style: none;
}

.social-links li a {
  color: var(--text-color-dark);
  text-decoration: none;
}

/* 照片放大效果 */
.team-member:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0px 0px 36px reba(0, 0, 0, 0.1);
}

/* 数据部分 */
.data-section {
  max-width: unset;
  width: 100vw;
  height: 255px;
  background-image: url(images/adult-business-computer-contemporary-380769.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  /* 最大值不能超过220px 最小值自行调整 */
  grid-template-columns: repeat(4, minmax(auto, 220px));
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
}

.data-section::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--backdrop-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.data-piece {
  width: 250px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  color: white;
  position: relative;
  z-index: 40;
}

.data-piece i.fas {
  font-size: 44px;
}

.data-piece .num {
  margin-top: 7px;
  font-size: 41px;
  font-weight: 600;
}

.data-piece .data-desc {
  font-size: 18px;
  font-weight: 500;
}

/* 公司动态 */
.company-activities {
  margin-top: 88px;
}

.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.activity {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: 0.4s;
}

.act-image-wrapper {
  height: 255px;
  overflow: hidden;
  /* 与上面的24像素重叠，然后抵消 */
  margin: -24px;
  margin-bottom: 0;
}

.act-image-wrapper img {
  min-height: 300px;
  object-fit: cover;
}

.activity .meta {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--text-color-light-gray);
  font-size: 12px;
  display: flex;
}

/* 直接取评论元素 */
.activity .meta>p:last-child {
  margin-left: 36px;
}

.act-title {
  color: var(--text-color-dark);
  font-size: 18px;
  margin-bottom: 16px;
}

.activity article {
  color: var(--text-color-gray);
  letter-spacing: 0.54px;
  line-height: 24px;
}

.readmore-btn {
  border: 0;
  color: white;
  background-color: var(--primary-color);
  border-radius: 4px;
  padding: 6px 14px;
  margin-top: 24px;
}

.activity:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}

/* 底部信息 */
footer {
  margin-top: 48px;
  background-color: #181818;
  display: grid;
  justify-items: center;
  padding-top: 72px;
  padding-bottom: 24px;
}

.footer-menus {
  width: 100%;
  max-width: 1460px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 0 80px 22px;
  position: relative;
  font-weight: 300;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-menus>div {
  display: flex;
  flex-direction: column;
}

.footer-menus>div>div {
  margin-bottom: 16px;
}

.footer-menus>div>div:last-child {
  margin-bottom: 0;
}
/* 控制footer中显示或者隐藏的 */
.footer-noshow{
  display: none;
}
.menu-title {
  font-size: 16px;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.wp-block-site-title {
  padding-bottom: 0 !important;
}

.wp-block-site-title a {
  font-size: 22px;
}

.contact-us {
  justify-self: start;
  color: var(--text-color-lightest);
}

.contact-us p {
  opacity: 0.7;
}

.contact-us p:not(:first-child) {
  padding-bottom: 16px;
}

.menu-items li {
  list-style: none;
  padding-bottom: 8px;
}

.menu-items li a {
  text-decoration: none;
  font-weight: 300;
  color: var(--text-color-lightest);
  opacity: 0.7;
}

.icp-info {
  margin-top: 24px;
  margin-bottom: 16px;
}

/* 从第一个到最后一个 */
.icp-info,
.rights {
  grid-column: 1/-1;
  justify-self: center;
  color: white;
  margin-top: 27px;
}

.aside {
  position: fixed;
  z-index: 300;
  right: 15px;
  bottom: 100px;
  z-index: 222;
  width: 60px;
  height: 200px;
  border-radius: 46px;
  box-shadow: 0px 3 10px 0px rgba(81, 83, 88, 0.19);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.scrollToTop {
  display: none;
  z-index: 300;
  z-index: 222;
}

.scrollToTop a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 999;
}

.aside-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.aside-icon {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
}

.service-item-img {
  width: 100%;
}

.about-us-box {
  display: flex;
  flex-wrap: wrap;
}

.about-us-left {
  flex: 0 0 50%;
  padding-top: 25px;
  color: #666666;
  font-size: 18px;
  display: flex;
  text-indent: 2em;
  flex-direction: column;
  justify-content: center;
  font-weight: 300;
  line-height: 25px;
}

.home-about-us-btn-box {
  text-indent: 0;
}

.about-us-right {
  flex: 0 0 50%;
}

.home-about-us-btn {
  margin-top: 20px;
}

/* 产品展示 */
.product-show {
  padding-bottom: 32px;
  padding-top: 64px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--light-bg-color);
}

.pro-show-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.pro-show-btn-box {
  text-align: center;
}

.pro-show-item {
  position: relative;
  flex: 0 0 20%;
  cursor: pointer;
  overflow: hidden;
}



.pro-show-text {
  position: absolute;
  left: 28px;
  top: 46px;
  color: var(--white-color);
}


.pro-show-title {
  font-size: 20px;
  font-weight: 300;
}

.pro-show-desc {
  margin-top: 15px;
  margin-left: 3px;
  font-size: 15px;
}

.pro-show-item.big-item {
  flex: 0 0 40%;
}

.pro-show-pic {
  height: 233px;
  width: 100%;
  display: block;
  transition: all 0.8s linear;
  transform: scale(1.03);
}

.pro-show-item:hover .pro-show-pic {
  transform: scale(1.25);
}

/* 应用领域 */
.yingyong {
  margin-top: 27px;
}

.yy-box {
  display: flex;
  width: 100%;
}

.yy-pic-box {
  position: relative;
  height: 672px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yy-pic {
  position: absolute;
  height: 100%;
  width: auto;
}

.yy-pic-text-box {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.yy-item {
  overflow: hidden;
  flex: 0 0 16.667%;
  width: 16.667%;
  transition: all 0.3s ease-in-out;
  color: var(--white-color);
}

.yy-item .yy-pic-excerpt {
  width: 364px;
  max-width: 100%;
  display: none;
}

.yy-item.active {
  flex: 0 0 50%;
  width: 50%;
}

.yy-item.active .yy-pic-excerpt {
  display: block;
}

.yy-pic-title {
  font-size: 22px;
}

.yy-pic-sub-title {
  font-size: 15px;
  margin: 6px 0;
  line-height: 25px;
}

.yy-pic-excerpt {
  line-height: 25px;
  font-size: 15px;
}

.w-full {
  width: 100%;
  overflow: hidden;
}

/* 企业动态 */
.news {
  margin-top: 111px;
  position: relative;
  width: 100%;
}

.news-bg-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.news-bg {
  width: 100%;
}

.news-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}

.news-left {
  flex: 1;
  padding: 10px;
}

.news-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-big-pic {
  width: 100%;
  height: 100%;
}

.news-item {
  display: flex;
}

.news-pic-box {
  width: 147px;
  height: 112px;
}
.news-pic{
  width: 100%;
  /* height: 120px; */
  height: 100px;
}

.news-info {
  flex: 1;
  padding-left: 19px;
}

.news-info-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #888;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.news-info-subtitle {
  color: #aaaaaa;
  font-size: 12px;
  /* line-height: 18px; */
  margin: 6px 0;
  font-family: "roboto";
}

.news-item {
  border-bottom: 1px solid #EDEDED;
  padding: 24px 0;
}

.ewm {
  width: 120px;
}

.line {
  width: 96%;
  height: 1px;
  background-color: #373737;
}

/* 关于我们 */
.about-info {
  text-align: left;
  line-height: 29px;
  text-indent: 2em;
}

.about-info h5 {
  margin: 30px 0;
}
.about-info .about-info-content{
  font-size: 26px;
  font-weight: 300;
  color: #333;
}
#allmap {
  width: 586px;
  height: 325px;
}

.link-info-left {
  flex: 1;
}

.link-info {
  display: flex;
  width: 100%;
  margin-top: 55px;
  flex-wrap: wrap;
}

/* 人才招聘 */
.toBack {
  margin-left: auto !important;
  color: #2575E1;
}

.recruit-item {
  width: 100%;
  margin: 24px 0;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 26px;
}

.recruit-item-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.recruit-item-title-text {
  font-size: 22px;
}

.shebao {
  display: flex;
  flex: 0 0 100%;
  margin: 12px 0 20px;
}

.shebao>p {
  background-color: #FFE9CE;
  margin-right: 8px;
  color: #FF763C;
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 2px;
}

.tagList {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tagItem {
  color: #fff;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  margin-right: 4px;
  border-radius: 2px;
  margin-bottom: 6px;
  font-weight: 300;
}

.recruit-item-info {
  display: flex;
  padding-top: 5px;
  font-size: 16px;
  margin-left: auto;
}
.recruit-item-info div{
  font-size: inherit;
}
.recruit-salary {
  color: #2575E1;
  margin-left: 20px;
}

.recruit-item-control {
  margin-left: 20px;
}

.recruit-item-bottom {
  margin-top: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #666666;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
}

.recruit-info-item-bottom {
  margin-top: 24px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}

.news-info-item-bottom {
  text-indent: 2em;
  line-height: 28px;
}
.news-info-item-bottom p{
  font-size: 26px;
  font-weight: 300;
}

.news-info-item-bottom .wp-block-image {
  margin: 10px auto;
}

.border-bottom {
  border-bottom: 1px solid #EDEDED;
}

.no-border {
  border: 0 !important;
}

.recruit-box {
  width: 100%;
}

.recruit-box>a {
  width: 100%;
}

.more-recruit {
  margin-bottom: 20px;
  padding-bottom: 7px;
}

.pagination-container {
  width: 80%;
  margin: 20px auto;
}

.page2 {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.page2.active {
  display: block;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.pagination_active {
  color: #fff !important;
  background-color: #2575E1 !important;
}

.pagination a:hover {
  background-color: #ddd;
}

.recruit-info-title-text {
  font-size: 32px;
}

.recruit-info-link {
  width: 22px;
  height: 22px;
}

.recruit-info-link-icon {
  display: inline-flex;
  margin-left: 10px;
}

.recruit-info-sub {
  display: flex;
  align-items: center;
  color: #2575E1;
  font-size: 22px;
  padding: 12px 0;
}

.info-tag-list {
  color: #222222;
  font-size: 15px;
  display: flex;
  font-weight: 400;
  flex-wrap: wrap;
}

.info-tag-list>div {
  padding: 0 3px;
}

.send-email {
  margin: 37px 0 60px;
}

.blue {
  color: #2575E1;
}

.news-info-title {
  font-size: 16px;
  font-weight: 300;
}

.page-news-info-title {
  font-size: 22px;
  margin-bottom: 18px;
}

.new-info-title-text {
  font-size: 32px;
  text-align: center;
}

.news-info-item-title {
  width: 100%;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.news-info-tag-list {
  margin: 13px 0 16px;
}

.otherPost {
  display: flex;
  width: 100%;
}

.prevPost,
.nextPost {
  flex: 1;
}

.prevPost :hover,
.nextPost:hover {
  color: #2575E1;
}

.nextPost {
  text-align: right;
}

.info-btn {
  border: 0;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  width: 160px;
  margin-top: 30px;
}

.bus-info {
  margin: 0 auto;
}

.bus-info * {
  font-size: inherit;
}

@media (max-width: 1100px) {
  .cases-link {
    margin-left: 15px;
  }

  .cases-list {
    margin: 0;
  }

  .cases-logo-pic {
    width: 100%;
  }

  .cases-item {
    width: 50%;
    flex: 0 0 50%;
  }

  header nav {
    display: none;
  }

  header {
    grid-template-columns: repeat(2, 1fr);
  }

  header .burger {
    display: block;
    width: 20px;
    height: 6px;
    position: relative;
    justify-self: end;
    cursor: pointer;
  }

  .burger-line1,
  .burger-line2,
  .burger-line3 {
    width: 20px;
    height: 2px;
    background-color: var(--text-dark-color);
  }

  .burger-line1 {
    position: absolute;
    top: -6px;
  }

  .burger-line3 {
    position: absolute;
    top: 6px;
  }

  header.open nav {
    display: grid;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    grid-auto-rows: max-content;
    justify-items: end;
    padding: 0 40px;
    opacity: 0;
    animation: slideDown 0.6s ease-out forwards;
  }

  header.open nav>* {
    color: var(--text-color-darker);
    animation: showMenu 0.5s linear forwards 0.4s;
    font-size: 18px;
    margin: 4px 0;
    opacity: 0;
  }

  header.open nav>i.fas {
    margin-top: 10px;
  }

  header.open .burger-line1,
  header.open .burger-line2,
  header.open .burger-line3,
  header.sticky .burger-line1,
  header.sticky .burger-line2,
  header.sticky .burger-line3 {
    background-color: var(--text-color-darker);
    transition: 0.4s ease;
  }

  header.open .burger-line1 {
    transform: rotate(45deg) translate(3px, 5px);
  }

  header.open .burger-line2 {
    transform: translateX(5px);
    opacity: 0;
  }

  header.open .burger-line3 {
    transform: rotate(-45deg) translate(3px, -5px);
  }

  header.open .logo {
    z-index: 40;
    color: var(--text-color-darker);
  }

  @keyframes slideDown {
    from {
      height: 0;
      opacity: 0;
    }

    to {
      height: 100vh;
      padding-top: 80px;
      opacity: 1;
    }
  }

  @keyframes showMenu {
    from {
      opacity: 0;
      transform: translateY(-1vh);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service-item .service-title {
    font-size: 20px;
  }

  .service-item .service-content {
    font-size: 14px;
    line-height: 24px;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
    column-gap: 6vw;
  }

  .activities {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}

@media(max-width: 992px) {
  .cases-link {
    margin-left: 15px;
  }

  .cases-list {
    margin: 0;
  }

  .cases-logo-pic {
    width: 100%;
  }

  .cases-item {
    width: 100%;
    flex: 0 0 100%;
  }

  .cases-item-box {
    height: auto;
  }

  .cases-item-img {
    width: 100%;
    height: auto;
  }

  .wp-block-site-title a {
    font-size: 14px;
  }

  .recruit-item-control {
    position: absolute;
    right: 0;
    top: 0;
  }

  .recruit-item-title {
    flex: 0 0 100% !important;
  }

  .recruit-item-info {
    margin-left: 0 !important;
  }

  .link-info-right {
    flex: 0 0 100%;
  }

  #allmap {
    width: 100%;
    flex: 0 0 100%;
  }

  .bus-page-post {
    flex: 0 0 100% !important;
  }

  .news-btn-box {
    display: flex;
    justify-content: center;
  }

  .news-left {
    flex: 0 0 100%;
  }

  .news-big-pic {
    width: 100%;
    height: auto;
  }

  .yy-box {
    flex-wrap: wrap;
  }

  .yy-item {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .yy-item .yy-pic-excerpt {
    display: block;
  }

  .yy-pic-box {
    height: 400px;
  }

  .yy-pic {
    width: auto;
    height: 100%;
  }

  .yy-item.active {
    flex: 0 0 100%;
    width: 100%;
  }

  .pro-show-item {
    flex: 0 0 100% !important;
  }

  .pro-show-pic {
    height: auto;
  }

  .about-us-left {
    flex: 0 0 100% !important;
    order: 1;
  }

  .about-us-right {
    flex: 0 0 100% !important;
  }

  .home-about-us-btn-box {
    text-align: center;
  }

  .home-about-us-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .glide__slide {
    justify-content: center;
  }

  .slide-caption {
    padding-left: 0;
  }

  .slide-caption.left_layout {
    text-align: center;
  }

  .slide-caption h1 {
    font-size: 30px;
  }

  .slide-caption h3 {
    font-size: 16px;
  }

  .features,
  .services {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    /* 取消固定行模式布局 */
  }

  .data-section {
    grid-template-columns: repeat(2, minmax(200px, auto));
    padding: 24px 0;
    height: auto;
    row-gap: 24px;
    background-size: 200%;
  }

  .showcases .case-item {
    width: calc(100vw / 3);
  }
}

@media(max-width: 768px) {

  section,
  .footer-menus {
    padding: 0 15px;
  }

  .footer-menus {
    grid-template-columns: 2fr repeat(2, 1fr);
    row-gap: 24px;
  }

  .contact-us {
    grid-row: 1/3;
  }

  .footer-menu {
    text-align: right;
  }

  .activities {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .data-section {
    grid-template-columns: 1fr;
    background-size: 400%;
  }

  .team-members {
    grid-template-columns: minmax(200px, 400px);
  }

  .features,
  .services {
    grid-template-columns: 1fr;
  }

  .showcases .case-item {
    width: calc(100vw/2);
    height: 30vw;
  }
}

@media (max-width: 576px) {
  .service-box {
    padding: 0;
  }

  header {
    padding-left: 0;
    padding-right: 15px;
  }

  header .logo {
    margin-left: 15px;
  }

  .slide-caption h1 {
    font-size: 28px;
  }

  .slide-caption h3 {
    font-size: 14px;
  }

  .explore-btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  .showcases .case-item {
    width: 100vw;
    height: 60vw;
  }

  .footer-menus {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    justify-self: start;
    text-align: left;
  }
}

header {
  background-color: var(--white-color);
}

.logo {
  display: flex;
  align-items: center;
}

.logoImg {
  width: 37px;
  height: 37px;
  margin-right: 11px;
}

.hidden {
  display: none !important;
}

.aside {
  position: fixed;
}

.bream-box {
  display: flex;
  font-size: 16px;
  color: #505457;
  align-items: center;
  height: 76px;
  border-bottom: 1px solid #EDEDED;
  align-items: center;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.bream-box a {
  text-decoration: none;
  margin: 0 3px;
  color: #505457;
}

.bream-gray {
  color: #AAAAAA;
}

/* 业务领域页面 */
.bussiness-page{
  background-color: var(--white-color);
}
.bus-page-box {
  display: flex;
  width: 100%;
  margin: 40px 0;
  padding: 0;
}

.bus-page-left {
  flex: 0 0 186px;
  background-color: #F6F8FD;
  min-height: 361px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

.bus-page-right {
  flex: 1;
}

.bus-page-left {
  cursor: pointer;
}

.bus-page-cate {
  width: 140px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.bus-page-cate.active {
  background-color: #fff;
  color: #2575E1;
}

.bus-posts-list {
  display: flex;
  flex-wrap: wrap;
}

.bus-page-post {
  position: relative;
  flex: 0 0 25%;
  padding: 10px;
  cursor: pointer;
}

.bus-page-img {
  width: 100%;
  /* height: auto; */
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s linear;
}

.bus-page-info-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.bus-page-info-box  .bus-page-title{
  font-size: 18px !important;
  font-weight: 300;
}
.bus-page-post:hover .bus-page-img {
  transform: scale(1.1);
}


.business-small-tit{
  font-weight: 300;
  line-height: 24px;
  color: #505457;
}

.color-red{
  color:#C10000 ;
  font-size: 26px;
  font-weight: 500;
}

/* 用户logo墙  logo-wall */
.logo-wall{
  margin: 60px 0 30px 0;
  cursor: pointer;
  /* background-color: var(--white-color); */
}
.logo-wall:hover{
  cursor: pointer;
}

.logo-wall-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
}

.logo-wall-item{
  width: 100%;
  height: auto;
  /* width: 150px;
  height: 150px;
  margin-bottom: 30px; */
}

.logo-wall-item img{
  width: 100%;
  height: 100%;
}